/* Fullscreen overlay for landscape */
#orientationOverlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  color: #000000;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

#orientationOverlay.active {
  display: flex;
}

.overlay-message h2 {
  font-size: 24px;
}